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

import Foundation

public struct CreateGroupResponse: Codable, Equatable {
    public var createdAt: Date
    public var groupName: String
    public var participantCount: Int
    public var threadId: String

    public init(createdAt: Date, groupName: String, participantCount: Int, threadId: String) {
        self.createdAt = createdAt
        self.groupName = groupName
        self.participantCount = participantCount
        self.threadId = threadId
    }
}
