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

import Foundation

public struct GetThreadResponse: Codable, Equatable {
    /// ThreadDetailSchema
    public var thread: ThreadDetailSchema

    public init(thread: ThreadDetailSchema) {
        self.thread = thread
    }
}
