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

import Foundation

public struct VideoHookFeedRequest: Codable, Equatable {
    public var pageSize: Int?
    public var startIndex: Int?

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