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

27 lines
566 B
Swift

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