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

26 lines
611 B
Swift

// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
import Foundation
extension Operations {
/// A model object
public struct GetMediaMetaDataLocation {
/// The file path for the location.
public let path: String
/// Creates an object with the specified parameters
///
/// - Parameter path: The file path for the location.
///
public init(path: String) {
self.path = path
}
}}
extension Operations.GetMediaMetaDataLocation: Codable {
enum CodingKeys: String, CodingKey {
case path
}
}