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

import Foundation

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

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

    public static let publishSong = Self(rawValue: "publish_song")
    public static let commentSong = Self(rawValue: "comment_song")
    public static let likeSong = Self(rawValue: "like_song")
    public static let remixSong = Self(rawValue: "remix_song")
    public static let publishHook = Self(rawValue: "publish_hook")
    public static let suggestCreator = Self(rawValue: "suggest_creator")
}
