/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { State } from './State'; export type ApiResponse_PullRequest = { data: { author_id: string; base_commit_sha?: string | null; body?: string | null; closed_at?: string | null; closed_by?: string | null; created_at: string; deleted_at?: string | null; draft: boolean; head_commit_sha: string; id: string; locked: boolean; merge_commit_sha?: string | null; merged_at?: string | null; merged_by?: string | null; number: number; repo_id: string; source_branch: string; source_repo_id: string; state: State; target_branch: string; target_repo_id: string; title: string; updated_at: string; }; };