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

import Foundation

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

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