Files
plexswift/Sources/Plexswift/models/operations/State.swift

12 lines
303 B
Swift

// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
import Foundation
extension Operations {
/// The state of the media item
public enum State: String, Codable, APIValue {
case playing = "playing"
case paused = "paused"
case stopped = "stopped"
}}