import type { ApiClient } from "@promobase/sdk-runtime"; import type { UserFields } from "./user.ts"; export interface VideoCopyrightMatchFields { created_date: string; id: string; last_modified_user: UserFields; match_data: Record[]; match_status: string; notes: string; permalink: string; policy_eval_modify_reasons: Record[]; ugc_content_format: string; } export function videoCopyrightMatchNode(client: ApiClient, id: string) { return { __path: id, __brand: undefined as unknown as VideoCopyrightMatchFields, get: (opts: { fields: F; params?: Record }) => client.get>(`${id}`, opts), }; }