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

import Foundation

public struct FollowingFeedResponseSchema: Codable, Equatable {
    public var firstItemTimestamp: Date?
    public var items: [FollowingFeedItemSchema]?
    public var lastItemTimestamp: Date?
    public var pageSize: Int?

    public init(firstItemTimestamp: Date? = nil, items: [FollowingFeedItemSchema]? = nil, lastItemTimestamp: Date? = nil, pageSize: Int? = nil) {
        self.firstItemTimestamp = firstItemTimestamp
        self.items = items
        self.lastItemTimestamp = lastItemTimestamp
        self.pageSize = pageSize
    }
}
