mirror of
https://github.com/LukeHagar/plexswift.git
synced 2025-12-06 04:20:52 +00:00
25 lines
735 B
Swift
25 lines
735 B
Swift
// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
|
|
import Foundation
|
|
|
|
extension Operations {
|
|
/// A model object
|
|
public struct ClearPlaylistContentsRequest: 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.ClearPlaylistContentsRequest {
|
|
var playlistIDWrapper: DecimalSerialized<Double> {
|
|
return _playlistID
|
|
}
|
|
}
|