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

import Foundation

public struct DeleteCommentRequest: Codable, Equatable {
    /// CommentEntityType
    public var entityType: CommentEntityType?

    public init(entityType: CommentEntityType? = nil) {
        self.entityType = entityType
    }
}
