mirror of
https://github.com/LukeHagar/plexswift.git
synced 2025-12-06 12:47:44 +00:00
26 lines
719 B
Swift
26 lines
719 B
Swift
// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
|
|
|
import Foundation
|
|
|
|
extension Operations {
|
|
/// A model object
|
|
public struct GetPlaylistRequest: APIValue {
|
|
/// the ID of the playlist
|
|
@DecimalSerialized
|
|
public private(set) var playlistID: Double
|
|
|
|
/// Creates an object with the specified parameters
|
|
///
|
|
/// - Parameter playlistID: the ID of the playlist
|
|
///
|
|
public init(playlistID: Double) {
|
|
self._playlistID = DecimalSerialized<Double>(wrappedValue: playlistID)
|
|
}
|
|
}
|
|
}
|
|
extension Operations.GetPlaylistRequest {
|
|
var playlistIDWrapper: DecimalSerialized<Double> {
|
|
return _playlistID
|
|
}
|
|
}
|