mirror of
https://github.com/LukeHagar/plexswift.git
synced 2025-12-06 04:20:52 +00:00
19 lines
653 B
Swift
19 lines
653 B
Swift
// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
|
|
import Foundation
|
|
|
|
extension Operations {
|
|
/// Successful response with media container data in XML
|
|
public struct GetUsersResponseBody {
|
|
/// Container holding user and server details.
|
|
public let mediaContainer: Operations.GetUsersMediaContainer?
|
|
|
|
/// Creates an object with the specified parameters
|
|
///
|
|
/// - Parameter mediaContainer: Container holding user and server details.
|
|
///
|
|
public init(mediaContainer: Operations.GetUsersMediaContainer? = nil) {
|
|
self.mediaContainer = mediaContainer
|
|
}
|
|
}}
|