mirror of
https://github.com/LukeHagar/plexswift.git
synced 2025-12-06 04:20:52 +00:00
26 lines
529 B
Swift
26 lines
529 B
Swift
// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
|
|
import Foundation
|
|
|
|
extension Operations {
|
|
/// A model object
|
|
public struct Guids {
|
|
/// The GUID value.
|
|
public let id: String
|
|
|
|
/// Creates an object with the specified parameters
|
|
///
|
|
/// - Parameter id: The GUID value.
|
|
///
|
|
public init(id: String) {
|
|
self.id = id
|
|
}
|
|
}}
|
|
|
|
extension Operations.Guids: Codable {
|
|
enum CodingKeys: String, CodingKey {
|
|
case id
|
|
}
|
|
}
|
|
|