Extract response data type (only readonly OR required fields are required - strict mode).
Used for ALL endpoint responses when --use-strict-response flag is enabled. Only marks fields as required if they are:
--use-strict-response
`ApiResponseStrict<operations, 'getPet'>` → `{ readonly id: string, name: string, tag?: string, status?: 'available' | ... }` Copy
`ApiResponseStrict<operations, 'getPet'>` → `{ readonly id: string, name: string, tag?: string, status?: 'available' | ... }`
Extract response data type (only readonly OR required fields are required - strict mode).
Used for ALL endpoint responses when
--use-strict-responseflag is enabled. Only marks fields as required if they are: