ListOauthAppsParams
public struct ListOauthAppsParams : Codable
Parameters to retrieve a list of oauth apps
-
App name
Declaration
Swift
public var name: String?
-
Client ID
Declaration
Swift
public var clientId: String?
-
Trusted apps, defaults to false
Declaration
Swift
public var trusted: Bool?
-
Number of apps to return, defaults to 50.
Declaration
Swift
public var pageSize: Int?
-
Allows authorization via admin token.
Declaration
Swift
public var adminToken: String?
-
Undocumented
Declaration
Swift
public init(name: String? = nil, clientId: String? = nil, trusted: Bool? = nil, pageSize: Int? = nil, adminToken: String? = nil)