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

import Foundation

public struct GenericDeleteCommentResponse: Codable, Equatable, Identifiable {
    public var id: String
    public var message: String?
    public var status: Status

    public struct Status: RawRepresentable, Codable, Equatable {
        public let rawValue: String

        public init(rawValue: String) {
            self.rawValue = rawValue
        }

        public static let deleted = Self(rawValue: "deleted")
        public static let error = Self(rawValue: "error")
    }

    public init(id: String, message: String? = nil, status: Status) {
        self.id = id
        self.message = message
        self.status = status
    }
}
