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

import Foundation

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

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

    public static let songSchema = Self(rawValue: "song_schema")
    public static let playlistSchema = Self(rawValue: "playlist_schema")
    public static let styleSchema = Self(rawValue: "style_schema")
    public static let personaSchema = Self(rawValue: "persona_schema")
    public static let simpleProfileSchema = Self(rawValue: "simple_profile_schema")
    public static let followingFeedItemSchema = Self(rawValue: "following_feed_item_schema")
}
