Files
plexswift/Sources/Plexswift/models/operations/ButlerTasks.swift

24 lines
566 B
Swift

// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
import Foundation
extension Operations {
/// A model object
public struct ButlerTasks {
public let butlerTask: [Operations.ButlerTask]?
/// Creates an object with the specified parameters
///
///
public init(butlerTask: [Operations.ButlerTask]? = nil) {
self.butlerTask = butlerTask
}
}}
extension Operations.ButlerTasks: Codable {
enum CodingKeys: String, CodingKey {
case butlerTask = "ButlerTask"
}
}