mirror of
https://github.com/LukeHagar/plexswift.git
synced 2025-12-06 12:47:44 +00:00
28 lines
829 B
Swift
28 lines
829 B
Swift
// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
|
|
import Foundation
|
|
|
|
extension Operations {
|
|
/// The Meta object is only included in the response if the `includeMeta` parameter is set to `1`.
|
|
///
|
|
public struct Meta {
|
|
public let fieldType: [Operations.GetRecentlyAddedFieldType]?
|
|
public let type: [Operations.GetRecentlyAddedType]?
|
|
|
|
/// Creates an object with the specified parameters
|
|
///
|
|
///
|
|
public init(fieldType: [Operations.GetRecentlyAddedFieldType]? = nil, type: [Operations.GetRecentlyAddedType]? = nil) {
|
|
self.fieldType = fieldType
|
|
self.type = type
|
|
}
|
|
}}
|
|
|
|
extension Operations.Meta: Codable {
|
|
enum CodingKeys: String, CodingKey {
|
|
case fieldType = "FieldType"
|
|
case type = "Type"
|
|
}
|
|
}
|
|
|