mirror of
https://github.com/LukeHagar/plexswift.git
synced 2025-12-06 20:57:46 +00:00
24 lines
681 B
Swift
24 lines
681 B
Swift
// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
|
|
import Foundation
|
|
|
|
extension Operations {
|
|
/// The Server Identity information
|
|
public struct GetServerIdentityResponseBody {
|
|
public let mediaContainer: Operations.GetServerIdentityMediaContainer?
|
|
|
|
/// Creates an object with the specified parameters
|
|
///
|
|
///
|
|
public init(mediaContainer: Operations.GetServerIdentityMediaContainer? = nil) {
|
|
self.mediaContainer = mediaContainer
|
|
}
|
|
}}
|
|
|
|
extension Operations.GetServerIdentityResponseBody: Codable {
|
|
enum CodingKeys: String, CodingKey {
|
|
case mediaContainer = "MediaContainer"
|
|
}
|
|
}
|
|
|