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

25 lines
508 B
Swift

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