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

import Foundation

public struct GetVideoHooksFromClipResponse: Codable, Equatable {
    public var items: [VideoHookSchema]
    public var pageSize: Int
    public var startIndex: Int

    public init(items: [VideoHookSchema], pageSize: Int, startIndex: Int) {
        self.items = items
        self.pageSize = pageSize
        self.startIndex = startIndex
    }
}
