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

import Foundation

public struct FollowingFeedRequestSchema: Codable, Equatable {
    public var pageSize: Int?
    public var rankingMethod: FollowingFeedRankingMethod?
    public var resultType: FollowingFeedResultType?
    public var startFeedTimestamp: Date?

    public init(pageSize: Int? = nil, rankingMethod: FollowingFeedRankingMethod? = nil, resultType: FollowingFeedResultType? = nil, startFeedTimestamp: Date? = nil) {
        self.pageSize = pageSize
        self.rankingMethod = rankingMethod
        self.resultType = resultType
        self.startFeedTimestamp = startFeedTimestamp
    }
}
