// Generated by Create API
// https://github.com/CreateAPI/CreateAPI

import Foundation

/// Schema for returning OAuth client application information.
public struct OAuthClientInfoSchema: Codable, Equatable {
    public var clientId: String
    public var name: String

    public init(clientId: String, name: String) {
        self.clientId = clientId
        self.name = name
    }
}
