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

import Foundation

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

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

    public static let `default` = Self(rawValue: "default")
    public static let chronological = Self(rawValue: "chronological")
}
