Files
plexswift/Sources/Plexswift/models/operations/GetPlaylistRequest.swift
2024-03-18 14:51:32 -07:00

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