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

import Foundation

public struct CheckCaptchaRequest: Codable, Equatable {
    /// CaptchaType
    public var ctype: CaptchaType

    public init(ctype: CaptchaType) {
        self.ctype = ctype
    }
}
