mirror of
https://github.com/LukeHagar/plexswift.git
synced 2025-12-06 04:20:52 +00:00
28 lines
703 B
Swift
28 lines
703 B
Swift
// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
|
|
import Foundation
|
|
|
|
extension Operations {
|
|
/// A model object
|
|
public struct Guids {
|
|
/// The unique identifier for the Guid. Can be imdb://tt0286347, tmdb://1763, tvdb://2337
|
|
///
|
|
public let id: String?
|
|
|
|
/// Creates an object with the specified parameters
|
|
///
|
|
/// - Parameter id: The unique identifier for the Guid. Can be imdb://tt0286347, tmdb://1763, tvdb://2337
|
|
///
|
|
///
|
|
public init(id: String? = nil) {
|
|
self.id = id
|
|
}
|
|
}}
|
|
|
|
extension Operations.Guids: Codable {
|
|
enum CodingKeys: String, CodingKey {
|
|
case id
|
|
}
|
|
}
|
|
|