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

import Foundation

public struct RemoveGroupMembersResponse: Codable, Equatable {
    public var newParticipantCount: Int
    public var removedCount: Int
    public var success: Bool

    public init(newParticipantCount: Int, removedCount: Int, success: Bool) {
        self.newParticipantCount = newParticipantCount
        self.removedCount = removedCount
        self.success = success
    }
}
