mirror of
https://github.com/LukeHagar/plexswift.git
synced 2025-12-06 20:57:46 +00:00
15 lines
462 B
Swift
15 lines
462 B
Swift
// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
|
|
|
|
import Foundation
|
|
|
|
extension Operations.IncludeCollections: Serializable {
|
|
func serialize(with format: SerializableFormat) throws -> String {
|
|
return try rawValue.serialize(with: format)
|
|
}
|
|
|
|
func serializeQueryParameters(with format: SerializableFormat) throws -> [QueryParameter] {
|
|
return [QueryParameter(key: [], serialized: try serialize(with: format))]
|
|
}
|
|
}
|