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

25 lines
504 B
Swift

// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
import Foundation
extension Operations {
/// A model object
public struct GetLibraryHubsWriter {
public let tag: String?
/// Creates an object with the specified parameters
///
///
public init(tag: String? = nil) {
self.tag = tag
}
}
}
extension Operations.GetLibraryHubsWriter: Codable {
enum CodingKeys: String, CodingKey {
case tag
}
}