Merge pull request #7 from LePips/create-api-transition

This commit is contained in:
Ethan Pippin 2022-08-17 22:30:23 -06:00 committed by GitHub
commit 848cd01551
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8373 changed files with 97532 additions and 148036 deletions

BIN
.DS_Store vendored

Binary file not shown.

BIN
.github/.DS_Store vendored

Binary file not shown.

View File

@ -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

84
.gitignore vendored
View File

@ -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/

View File

@ -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

View File

@ -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

View File

@ -1 +0,0 @@
6.0.1-SNAPSHOT

46
.swiftformat Normal file
View File

@ -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"

View File

@ -1 +0,0 @@
github "Flight-School/AnyCodable" ~> 0.6.1

View File

@ -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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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 users 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"}}}

View File

@ -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 users 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"}}}

View File

@ -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 users 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"}}}

View File

@ -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 users access schedule."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AccessSchedule"}],"url":"\/documentation\/jellyfinapi\/accessschedule"}}}

View File

@ -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 users access schedule."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AccessSchedule"}],"url":"\/documentation\/jellyfinapi\/accessschedule"}}}

View File

@ -0,0 +1 @@
{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s: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 users access schedule."}],"identifier":"doc:\/\/JellyfinAPI\/documentation\/JellyfinAPI\/AccessSchedule","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AccessSchedule"}],"url":"\/documentation\/jellyfinapi\/accessschedule"}}}

View File

@ -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 users 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"}}}

View File

@ -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 users 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"}}}

File diff suppressed because one or more lines are too long

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -0,0 +1 @@
{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s: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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s: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:)"}}}

View File

@ -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:)"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -0,0 +1 @@
{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s: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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

File diff suppressed because one or more lines are too long

View File

@ -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"}}}

View File

@ -0,0 +1 @@
{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s: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:)"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

File diff suppressed because one or more lines are too long

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -0,0 +1 @@
{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s: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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s: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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s: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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

File diff suppressed because one or more lines are too long

View File

@ -0,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\/!=(_:_:)"}}}

View File

@ -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(_:)"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -0,0 +1 @@
{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s: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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

View File

@ -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"}}}

File diff suppressed because one or more lines are too long

View File

@ -0,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"}}}

Some files were not shown because too many files have changed in this diff Show More