ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.397.2

This commit is contained in:
speakeasybot
2024-09-16 18:44:33 +00:00
parent c0dafdc561
commit 6b54deac02
919 changed files with 16195 additions and 6963 deletions

View File

@@ -1,13 +1,10 @@
// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
import Foundation
extension Operations {
/// A model object
public struct GetPinRequest: APIValue {
/// Product name of the application shown in the list of devices
///
public let xPlexProduct: String
/// Determines the kind of code returned by the API call
/// Strong codes are used for Pin authentication flows
/// Non-Strong codes are used for `Plex.tv/link`
@@ -18,11 +15,10 @@ extension Operations {
/// (UUID, serial number, or other number unique per device)
///
public let xPlexClientIdentifier: String?
public let xPlexProduct: String?
/// Creates an object with the specified parameters
///
/// - Parameter xPlexProduct: Product name of the application shown in the list of devices
///
/// - Parameter strong: Determines the kind of code returned by the API call
/// Strong codes are used for Pin authentication flows
/// Non-Strong codes are used for `Plex.tv/link`
@@ -32,10 +28,9 @@ extension Operations {
/// (UUID, serial number, or other number unique per device)
///
///
public init(xPlexProduct: String, strong: Bool? = nil, xPlexClientIdentifier: String? = nil) {
self.xPlexProduct = xPlexProduct
public init(strong: Bool? = nil, xPlexClientIdentifier: String? = nil, xPlexProduct: String? = nil) {
self.strong = strong
self.xPlexClientIdentifier = xPlexClientIdentifier
self.xPlexProduct = xPlexProduct
}
}
}
}}