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

import Foundation

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

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

    public static let notInterested = Self(rawValue: "not_interested")
    public static let creatorNotInterested = Self(rawValue: "creator_not_interested")
}
