// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. import Foundation extension Operations { /// A response model public enum GetRecentlyAddedResponse { case empty case object(Operations.GetRecentlyAddedResponseBody) var isEmpty: Bool { if case .empty = self { return true } else { return false } } public func object() throws -> Operations.GetRecentlyAddedResponseBody { guard case .object(let value) = self else { throw PlexswiftError.missingResponseData } return value } }}