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

import Foundation

public struct FollowingFeedRequestV2: Codable, Equatable {
    public var pageSize: Int?
    public var startFeedTimestamp: Date?

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