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

import Foundation

/// Schema for OAuth redirect response.
public struct OAuthRedirectResponseSchema: Codable, Equatable {
    public var redirectUrl: String

    public init(redirectUrl: String) {
        self.redirectUrl = redirectUrl
    }
}
