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

import Foundation

public struct FlagArtistProfileSpec: Codable, Equatable {
    public var handle: String
    public var unflag: Bool?

    public init(handle: String, unflag: Bool? = nil) {
        self.handle = handle
        self.unflag = unflag
    }
}
