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

25 lines
469 B
Swift

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