Extract response data type (ALL fields required - default behavior).
Used for ALL endpoint responses (GET, POST, PUT, PATCH, DELETE) by default. Assumes the API always returns all fields regardless of how they're marked in the spec.
`ApiResponse<operations, 'getPet'>` → `{ readonly id: string, name: string, tag: string, status: 'available' | ... }` Copy
`ApiResponse<operations, 'getPet'>` → `{ readonly id: string, name: string, tag: string, status: 'available' | ... }`
Extract response data type (ALL fields required - default behavior).
Used for ALL endpoint responses (GET, POST, PUT, PATCH, DELETE) by default. Assumes the API always returns all fields regardless of how they're marked in the spec.